home *** CD-ROM | disk | FTP | other *** search
/ Best of Shareware / Best of PC Windows Shareware 1.0 - Wayzata Technology (7111) (1993).iso / mac / WINDOWS / BUSINESS / PH349B / ADVANCED.TXT next >
Text File  |  1991-05-04  |  681b  |  33 lines

  1. Advanced macro to dial a phone number
  2. Select a phone number in your
  3. spreadsheet & press CTRL D to dial.
  4. =DIAL()
  5. =RETURN()
  6.  
  7. Call the METZ Software Sales Number
  8. 1-206-641-4525
  9.  
  10. DIAL
  11. =WORKSPACE(,,,,,,,FALSE)
  12. Establish connection with METZ Phones
  13. =INITIATE("PHONES","DIAL")
  14. Send Phones the contents of the active cell
  15. which should be a phone number
  16. =EXECUTE($A$13,"[DIAL("&ACTIVE.CELL()&")]")
  17. Have to give modem a chance to dial,
  18. may need more time than 6 seconds.
  19. =WAIT(NOW()+"00:00:06")
  20. Don't forget to hang up
  21. =EXECUTE($A$13,"[HANGUP]")
  22. Optional command to close Phones
  23. =EXECUTE($A$13,"[CLOSE]")
  24. Terminate connection
  25. =TERMINATE($A$13)
  26. =HALT()
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.